home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / WebSites / MailingLists / AMOSLIST.0899 / 000030_nobody_Sun Aug 8 13:03:51 1999.msg < prev    next >
Internet Message Format  |  1999-09-01  |  4KB

  1. Received: from onelist.com (pop.onelist.com [209.207.164.235])
  2.     by osf1.gmu.edu (8.8.8/8.8.8) with SMTP id NAA06801
  3.     for <mcox4@osf1.gmu.edu>; Sun, 8 Aug 1999 13:03:51 -0400 (EDT)
  4. Received: (qmail 30010 invoked by alias); 8 Aug 1999 17:03:44 -0000
  5. Received: (qmail 30003 invoked from network); 8 Aug 1999 17:03:43 -0000
  6. Received: from unknown (HELO mail.enterprise.net) (194.72.192.18) by pop.onelist.com with SMTP; 8 Aug 1999 17:03:43 -0000
  7. Received: from enterprise.net (andrewcrowe@max03-052.enterprise.net [194.72.196.52]) by mail.enterprise.net (8.8.5/8.8.5) with SMTP id SAA27738 for <amos-list@onelist.com>; Sun, 8 Aug 1999 18:03:41 +0100 (GMT/BST)
  8. From: Andrew Crowe <andrewcrowe@enterprise.net>
  9. To: amos-list@onelist.com
  10. Date: Sun, 08 Aug 1999 17:22:20 +0000
  11. Message-ID: <yam7889.1022.1196616688@mail.enterprise.net>
  12. In-Reply-To: <yam7889.1195.30211888@smtp.freeserve.net>
  13. X-Mailer: YAM 2.0 [040] AmigaOS E-Mail Client (c) 1995-1999 by Marcel Beck  http://www.yam.ch
  14. Mailing-List: list amos-list@onelist.com; contact amos-list-owner@onelist.com
  15. Delivered-To: mailing list amos-list@onelist.com
  16. Precedence: bulk
  17. List-Unsubscribe: <mailto:amos-list-unsubscribe@ONElist.com>
  18. Reply-to: amos-list@onelist.com
  19. Mime-Version: 1.0
  20. Content-Type: text/plain; charset=iso-8859-1
  21. Content-transfer-encoding: 8bit
  22. Subject: [amos-list] Re: What's wrong with this!
  23. Status: O
  24. X-Status: 
  25.  
  26. From: Andrew Crowe <andrewcrowe@enterprise.net>
  27.  
  28. Hi Everybody,
  29.  
  30. >    1) Why do the map graphics trash up when you go so far down (and I
  31. >       don't mean the flickery bands, the palette changes!)
  32. >    2) Why do the flickery bands show up.
  33. >    4) Why is it, that about three quarters of the way DOWN the map,
  34. >       everything goes white, and bobs won't show up on it. When I was using
  35. >       an IFF instead of a map tiles, this area refused to show up the main
  36. >       player bob, or the others. why?
  37.  
  38.    Your problem is simple, it is the same problem I had while writing JamesBond:
  39.  
  40.    Your screen is too big.
  41.  
  42. I'm afraid you're limited to about 640x512, otherwise at a certain point down the screen almost none of the Amos gfx commands will work. (as you have found) 
  43.  
  44.    The only alternative is, I know the Turbo extentions F 16proc Icon command will work on a screen that big, I have no idea about bobs though, prehaps the PBOB extention'll work?
  45.  
  46.    
  47. >    3) How can I store the map data in a file and read it in later?
  48.  
  49.    easy, first you write a level editor, then do this:
  50.  
  51. 'sx - x size of map
  52. 'sy - y size of map
  53.  
  54. Dim MAP(sx,sy)
  55.  
  56.  
  57. ------------ level editor bit goes here ----
  58.  
  59.  
  60. sav:  Rem suproutine for saving.
  61.    open out 1,FILENAME$
  62.    For x=0 to sx
  63.       for y=0 to sy
  64.          Print #1,map(x,y)
  65.       next
  66.    next
  67.    close 1
  68. return
  69.  
  70. lod:  Rem suproutine for loading.
  71.    open in 1,FILENAME$
  72.    For x=0 to sx
  73.       for y=0 to sy
  74.          input #1,map(x,y)
  75.       next
  76.    next
  77.    close 1
  78. return
  79.  
  80. then just use the 'lod' subroutine ingame.
  81.  
  82.  
  83.  
  84. See ya.
  85. -- 
  86.        Manta Soft  -  Amiga programing & web page designing
  87.      Http://members.tripod.com/~mantasoft/      ICQ: 21829166        
  88.  Homepage updated 5/8/99 --- James Bond on GFX Card & CPU players!
  89.   - ------------------- Quote of the day: -------------------- -
  90. "Bother," said Pooh, as he woke up naked in a field full of sheep.
  91.  
  92.  
  93. --------------------------- ONElist Sponsor ----------------------------
  94.  
  95. How do you enter ONElist�s WEEKLY DRAWING for $100?
  96. By joining the FRIENDS & FAMILY program.  For details, go to
  97. http://www.onelist.com/info/onereachsplash3.html
  98.  
  99. ------------------------------------------------------------------------
  100. Official AMOS WWW: http://members.xoom.com/AmosFactory/front.html